From c8875e680e7de294eacadc401be4ede47e922dd6 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Fri, 27 Dec 2002 04:08:28 +0000 Subject: [PATCH] (Info-complete-menu-item): Make `Info-complete-cache' a buffer-local variable. --- lisp/info.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/info.el b/lisp/info.el index 836c8287ebe..ed323d6e7f0 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -1543,9 +1543,9 @@ FOOTNOTENAME may be an abbreviation of the reference name." (unless (equal Info-current-node orignode) (Info-goto-node orignode)) ;; Update the cache. - (setq Info-complete-cache - (list Info-current-file Info-current-node - Info-complete-next-re string completions))) + (set (make-local-variable 'Info-complete-cache) + (list Info-current-file Info-current-node + Info-complete-next-re string completions))) (if action (all-completions string completions predicate) (try-completion string completions predicate))))))) -- 2.30.2